home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-01-09 | 443 b | 19 lines | [TEXT/GADA] |
- --
- -- Screen_IO contains a task which controls the concurrency in the
- -- I/O to the screen.
- -- Arthur Vargas Lopes, The George Washington University
- --
- WITH Screen;
- USE Screen;
- PACKAGE Screen_IO IS
-
- SUBTYPE Height IS Screen.Height;
- SUBTYPE Width IS Screen.Width;
- SUBTYPE Position IS Screen.Position;
-
- TASK Terminal IS
- ENTRY WriteAt(Where: Screen.Position; What : String );
- END Terminal;
-
- END Screen_IO;
-